home *** CD-ROM | disk | FTP | other *** search
- Path: nntphub.cb.att.com!news
- From: John McEncroe <jmc@jolt.mt.att.com>
- Newsgroups: comp.lang.c
- Subject: Re: a=5; a==5;lost friend
- Date: 25 Jan 1996 18:31:36 GMT
- Organization: AT&T Bell Laboratories, Columbus, Ohio
- Message-ID: <4e8ia8$f4l@nntpb.cb.att.com>
- References: <822403351snz@genesis.demon.co.uk> <tcpnntpd.16.1.23.23.34.0.2781597121.360047@bbs.sos.on.ca>
- NNTP-Posting-Host: 135.20.31.*
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1 (X11; U; SunOS 5.4 sun4m)
- X-URL: news:tcpnntpd.16.1.23.23.34.0.2781597121.360047@bbs.sos.on.ca
-
- <verneb@sos.on.ca> wrote:
- >
- >
- > Please if you read this Alan write back to me will you since I
- >accidently lost your address before I wrote it down. We were
- >discussing the difference between:-
- >
- > a = 5;
- > and
- > a == 5;
- >
- > plus other programming problems.
- >
- > I know you were something to do with: nasa.com but not 100 percent
- >sure.
- >
- > Hope I here from you.
- >Verne H. Bohlender
- >Box 416, Chesley, Ontario.Ca. N0G 1L0
- >verneb@The-Fix.sos.on.ca
- >___
- >* UniQWK #2158*
- >
- Well, I'm not Alan but:
-
- a = 5 is assigning the value of 5 to a
- a == 5 is comparing the value of a to 5 (like in an if statement)
-
- John.
-
-